Created a web page presentation using R Markdown that features a plot created with Plotly.
Created a web page presentation using R Markdown that features a plot created with Plotly.
suppressPackageStartupMessages({library(plotly)})
library(ggplot2)
library(plotly)
plot_ly(mtcars,x=~wt, y=~mpg,type = 'scatter',mode="markers" )